package ie.flax.flaxengine.client.events; import com.google.gwt.event.shared.EventHandler; /** * Specific Events handler interface for event onFileLoadedEvent * @author Ciar�n McCann * */ public interface onFileLoadedEventHandler extends EventHandler{ /** * The code body for this method is implemented in the listening class. The code in the body * is called when the event is fired and caught by the listener * @param e */ void onFileLoaded(onFileLoadedEvent e); }